home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / lightning-0.8-tb-win.xpi / chrome / calendar.jar / content / calendar / calendarProperties.xul < prev    next >
Extensible Markup Language  |  2008-03-13  |  5KB  |  108 lines

  1. <?xml version="1.0"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.    -
  5.    - The contents of this file are subject to the Mozilla Public License Version
  6.    - 1.1 (the "License"); you may not use this file except in compliance with
  7.    - the License. You may obtain a copy of the License at
  8.    - http://www.mozilla.org/MPL/
  9.    -
  10.    - Software distributed under the License is distributed on an "AS IS" basis,
  11.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.    - for the specific language governing rights and limitations under the
  13.    - License.
  14.    -
  15.    - The Original Code is Calendar Code.
  16.    -
  17.    - The Initial Developer of the Original Code is
  18.    - Michiel van Leeuwen <mvl@exedo.nl>
  19.    - Portions created by the Initial Developer are Copyright (C) 2005
  20.    - the Initial Developer. All Rights Reserved.
  21.    -
  22.    - Contributor(s):
  23.    -   Philipp Kewisch <mozilla@kewis.ch>
  24.    -
  25.    - Alternatively, the contents of this file may be used under the terms of
  26.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  27.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.    - in which case the provisions of the GPL or the LGPL are applicable instead
  29.    - of those above. If you wish to allow use of your version of this file only
  30.    - under the terms of either the GPL or the LGPL, and not to allow others to
  31.    - use your version of this file under the terms of the MPL, indicate your
  32.    - decision by deleting the provisions above and replace them with the notice
  33.    - and other provisions required by the LGPL or the GPL. If you do not delete
  34.    - the provisions above, a recipient may use your version of this file under
  35.    - the terms of any one of the MPL, the GPL or the LGPL.
  36.    -
  37.    - ***** END LICENSE BLOCK ***** -->
  38.  
  39. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  40.  
  41. <!DOCTYPE dialog 
  42. [
  43.     <!ENTITY % dtd1 SYSTEM "chrome://calendar/locale/global.dtd" > %dtd1;
  44.     <!ENTITY % dtd2 SYSTEM "chrome://calendar/locale/calendar.dtd" > %dtd2;
  45. ]>
  46.  
  47.  
  48. <dialog
  49.     id="calendar-properties-dialog"
  50.     title="&calendar.server.dialog.title.edit;"
  51.     buttons="accept,cancel"
  52.     ondialogaccept="return onOKCommand();"
  53.     ondialogcancel="return true;"
  54.     onload="loadCalendarPropertiesDialog()"
  55.     persist="screenX screenY"
  56.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  57.     width="500"
  58.     xmlns:nc="http://home.netscape.com/NC-rdf#">
  59.  
  60.     <script type="application/x-javascript" src="chrome://calendar/content/calendarProperties.js"/>
  61.     <script type="application/x-javascript" src="chrome://calendar/content/calUtils.js"/>
  62.  
  63.     <!-- STRING BUNDLE for calendar properties -->
  64.     <stringbundleset id="stringbundleset">
  65.         <stringbundle id="bundle_calendar" src="chrome://calendar/locale/calendar.properties"/>
  66.     </stringbundleset>
  67.  
  68.     <grid>
  69.         <columns>
  70.             <column/>
  71.             <column flex="1"/>
  72.         </columns>
  73.         <rows id="calendar-properties-rows">
  74.             <row id="calendar-name-row" align="center">
  75.                 <label value="&calendar.server.dialog.name.label;" control="calendar-name"/>
  76.                 <textbox flex="1" id="calendar-name"/>
  77.             </row>
  78.             <row id="calendar-color-row" align="center">
  79.                 <label value="&calendarproperties.color.label;" control="calendar-color"/>
  80.                     <hbox align="center">
  81.                         <colorpicker id="calendar-color"
  82.                                     class="small-margin"
  83.                                     type="button"
  84.                                     palettename="standard"/>
  85.                     </hbox>
  86.             </row>
  87.             <row id="calendar-uri-row" align="center">
  88.                 <label value="&calendarproperties.location.label;" control="calendar-uri"/>
  89.                 <!-- XXX Make location field readonly until Bug 315307 is fixed -->
  90.                 <textbox id="calendar-uri" readonly="true" oninput="checkURL()"/>
  91.             </row>
  92.             <row id="calendar-readOnly-row" align="center">
  93.                 <spacer/>
  94.                 <checkbox id="read-only" label="&calendarproperties.readonly.label;"/>
  95.             </row>
  96.             <row id="calendar-suppressAlarms-row" align="center">
  97.                 <spacer/>
  98.                 <checkbox id="fire-alarms" label="&calendarproperties.firealarms.label;"/>
  99.             </row>
  100.             <row id="calendar-cache-row" align="center">
  101.                 <spacer/>
  102.                 <checkbox id="cache" label="&calendarproperties.cache.label;"/>
  103.             </row>
  104.             <spacer/>
  105.         </rows>
  106.     </grid>
  107. </dialog>
  108.